home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amigappc / libsrc / stdlib / system.c < prev   
Encoding:
C/C++ Source or Header  |  1998-06-24  |  327 b   |  18 lines

  1. /*
  2. ** vbcc-Amiga-PowerPC version of system.c
  3. **
  4. ** v0.1 04.10.97 phx
  5. */
  6.  
  7. #include <exec/libraries.h>
  8. #include <utility/TagItem.h>
  9. #include <powerup/gcclib/powerup_protos.h>
  10.  
  11.  
  12. int system(const char *string)
  13. {
  14.   /* there is currently no function in the PowerUp kernel */
  15.   /* to start another PowerPC task ... */
  16.   return (1);
  17. }
  18.